From a69b549408376817b2c3e7d87d119c291a8a466a Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 29 Dec 2008 07:39:34 +0000 Subject: [PATCH] Doc additions svn path=/trunk/; revision=21998 --- ChangeLog | 1 + gtk/gtkwindow.c | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/ChangeLog b/ChangeLog index a36c05f03d..42d77bc90a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ 2008-12-28 Matthias Clasen + * gtk/gtkwindow.c: * gtk/gtkstyle.c: Doc additions 2008-12-28 Matthias Clasen diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c index 1858b84111..e0c76c43f8 100644 --- a/gtk/gtkwindow.c +++ b/gtk/gtkwindow.c @@ -758,6 +758,7 @@ gtk_window_class_init (GtkWindowClass *klass) P_("The transient parent of the dialog"), GTK_TYPE_WINDOW, GTK_PARAM_READWRITE| G_PARAM_CONSTRUCT)); + /** * GtkWindow:opacity: * @@ -796,6 +797,15 @@ gtk_window_class_init (GtkWindowClass *klass) G_TYPE_BOOLEAN, 1, GDK_TYPE_EVENT); + /** + * GtkWindow::activate-focus: + * @window: the window which received the signal + * + * The ::activate-default signal is a + * keybinding signal + * which gets emitted when the user activates the currently + * focused widget of @window. + */ window_signals[ACTIVATE_FOCUS] = g_signal_new (I_("activate-focus"), G_TYPE_FROM_CLASS (gobject_class), @@ -806,6 +816,15 @@ gtk_window_class_init (GtkWindowClass *klass) G_TYPE_NONE, 0); + /** + * GtkWindow::activate-default: + * @window: the window which received the signal + * + * The ::activate-default signal is a + * keybinding signal + * which gets emitted when the user activates the default widget + * of @window. + */ window_signals[ACTIVATE_DEFAULT] = g_signal_new (I_("activate-default"), G_TYPE_FROM_CLASS (gobject_class), @@ -816,6 +835,13 @@ gtk_window_class_init (GtkWindowClass *klass) G_TYPE_NONE, 0); + /** + * GtkWindow::keys-changed: + * @window: the window which received the signal + * + * The ::keys-changed signal gets emitted when the set of accelerators + * or mnemonics that are associated with @window changes. + */ window_signals[KEYS_CHANGED] = g_signal_new (I_("keys-changed"), G_TYPE_FROM_CLASS (gobject_class), -- 2.30.2